home *** CD-ROM | disk | FTP | other *** search
/ Champak 119 / (Vol 119) Nov 09 2010.iso / Games / orbitrax.swf / scripts / DefineButton2_98 / BUTTONCONDACTION on(press).as next >
Text File  |  2010-11-09  |  252b  |  11 lines

  1. on(press){
  2.    this.onEnterFrame = function()
  3.    {
  4.       newX = _xmouse;
  5.       newX = Math.max(Math.min(newX,55),0);
  6.       cursor._x = newX;
  7.       main.mainVolume = Math.round(newX / 55 * 100);
  8.       main.s.setVolume(main.mainVolume);
  9.    };
  10. }
  11.